home *** CD-ROM | disk | FTP | other *** search
/ The 50th Anniversary of …National Assembly Library / The 50th Anniversary of the National Assembly Library.iso / big.dxr / 00039.ls < prev    next >
Encoding:
Text File  |  2002-02-18  |  475 b   |  29 lines

  1. on mouseEnter
  2.   cursor([121, 122])
  3.   set the member of sprite 18 to 52
  4. end
  5.  
  6. on mouseDown
  7.   if rollover(18) then
  8.   end if
  9. end
  10.  
  11. on mouseUp
  12.   if rollover(18) then
  13.     cursor(-1)
  14.     go("movie")
  15.   end if
  16. end
  17.  
  18. on mouseLeave
  19.   if rollover(10) or rollover(15) or rollover(16) or rollover(17) then
  20.     set the member of sprite 18 to 51
  21.     cursor(-1)
  22.   else
  23.     set the member of sprite 18 to 51
  24.     repeat with tt = 15 to 18
  25.       sprite(tt).visible = 0
  26.     end repeat
  27.   end if
  28. end
  29.